home *** CD-ROM | disk | FTP | other *** search
/ How To Lose A Guy In 10 Days Press Kit / How to Lose a Guy in 10 Days Press Kit.iso / pc / Program.dxr / Internal_26_HELP_GOTO_CASE_BEHAVIOR.ls < prev    next >
Encoding:
Text File  |  2003-01-17  |  408 b   |  27 lines

  1. on mouseWithin
  2.   sprite(91).member = "But_Help_RO"
  3.   cursor(280)
  4. end
  5.  
  6. on mouseDown
  7.   sound(3).play(member("click2"))
  8.   case the frameLabel of
  9.     "Preview_1A":
  10.       go("Help1")
  11.     "preview_2A":
  12.       go("Help2")
  13.     "Preview3a":
  14.       go("Help3")
  15.     "Preview4a":
  16.       go("Help4")
  17.     "Save":
  18.       go("SaveHelp")
  19.   end case
  20.   cursor(0)
  21. end
  22.  
  23. on mouseLeave
  24.   cursor(0)
  25.   sprite(91).member = "But_Help"
  26. end
  27.